home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / Development / RKM_Companion_v2.04 / ASL / smakefile < prev   
Encoding:
Makefile  |  1996-03-20  |  291 b   |  19 lines

  1. CFLAGS = nostackcheck structureequivalence ignore=73
  2.  
  3. all: filehook filepat filereq fontreq
  4.  
  5. filehook: filehook.c
  6.     sc link $(CFLAGS) $@
  7.  
  8. filepat: filepat.c
  9.     sc link $(CFLAGS) $@
  10.  
  11. filereq: filereq.c
  12.     sc link $(CFLAGS) $@
  13.  
  14. fontreq: fontreq.c
  15.     sc link $(CFLAGS) $@
  16.  
  17. clean:
  18.     -delete \#?.(o|lnk)
  19.